home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / GRAPHICS / VOXRAY.ZIP / SIGN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-12  |  85 b   |  7 lines

  1. #ifndef _SIGN_
  2. #define _SIGN_
  3.  
  4. #define SIGN(x) (((x)<0) ? (-1) : (1))
  5.  
  6. #endif
  7.